This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / routes / [handle] / [repo] / +page.ts
250 B 7 lines
1import { loadRepoIndex } from "$lib/api/repoIndex"; 2import type { PageLoad } from "./$types"; 3 4export const load: PageLoad = async (event) => { 5 const parent = await event.parent(); 6 return loadRepoIndex(event, parent, parent.repo.defaultBranch); 7};